home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0b3 / AEGestalt.MAMake < prev    next >
Encoding:
Text File  |  1991-12-11  |  3.3 KB  |  105 lines  |  [TEXT/MPS ]

  1. #---------------------------------------------------------------------------------------------------
  2. #                                                                                                   |
  3. #    File:            AEGestalt.MAMake                                                                |
  4. #                                                                                                   |
  5. #    Description:    Makefile for AEGestalt.                                                           |
  6. #                                                                                                   |
  7. #                                                                                                   |
  8. #    Copyright © 1991 by Apple Computer, Inc.  All rights reserved.                                    | 
  9. #    Kent Sandvik DTS                                                                               |
  10. #    A lot of dependencies, but then again a lot of files...                                         |
  11. #---------------------------------------------------------------------------------------------------
  12.  
  13.  
  14. #---------------------------------------------------------------------------------------------------
  15. #    List here the Application's Name
  16.  
  17. AppName = AEGestalt
  18.  
  19.  
  20. #---------------------------------------------------------------------------------------------------
  21. #    List resource files that the Rez file includes if you want to include
  22. #    more or less than the standard set
  23.  
  24. OtherRsrcFiles = ∂
  25.     "{SrcApp}views.rsrc"
  26.  
  27.  
  28. #---------------------------------------------------------------------------------------------------
  29. #    List any additional interfaces that your application is dependent on
  30.  
  31. OtherInterfaces =  ∂
  32.     "{SrcApp}IncludeFiles.h" ∂
  33.     "{SrcApp}ResourceConstants.h" ∂
  34.     "{SrcApp}UAEClientCommand.h" ∂
  35.     "{SrcApp}UAEDocument.h" ∂
  36.     "{SrcApp}UAEServerCommand.h" ∂
  37.     "{SrcApp}UGrayfillAdorner.h" ∂
  38.     "{SrcApp}UInformationView.h" ∂
  39.     "{SrcApp}ULabelView.h" ∂
  40.     "{SrcApp}ULookupCommand.h"
  41.     
  42.     
  43.  
  44. #---------------------------------------------------------------------------------------------------
  45. #    Name any other object files to link in
  46.  
  47. OtherLinkFiles = ∂
  48.     "{ObjApp}UAEClientCommand.cp.o" ∂
  49.     "{ObjApp}UAEDocument.cp.o" ∂
  50.     "{ObjApp}UAEServerCommand.cp.o" ∂
  51.     "{ObjApp}UGrayfillAdorner.cp.o" ∂
  52.     "{ObjApp}UInformationView.cp.o" ∂
  53.     "{ObjApp}ULabelView.cp.o" ∂
  54.     "{ObjApp}ULookupCommand.cp.o"
  55.  
  56. #---------------------------------------------------------------------------------------------------
  57. #    Express any additional dependencies for separate compilations.
  58. #    Include dependencies for the MacApp and Building block interfaces
  59. #    if you are dependent on them
  60.  
  61. #    In this case we have a 'lazy dependency graph' - i.e. a very simple
  62. #    and direct dependency where only the directly needed files are referenced
  63. #    The first cut was done using MakeMake (Developer CD)
  64.  
  65.  
  66. "{ObjApp}UAEGestalt.cp.o" ƒ ∂
  67.         UAEGestalt.h IncludeFiles.h ∂
  68.         {MacAppIntf} ∂
  69.         {BuildingBlocksIntf}
  70.  
  71. "{ObjApp}UAEDocument.cp.o" ƒ ∂
  72.         UAEDocument.h UAEGestalt.h IncludeFiles.h ∂
  73.         {MacAppIntf} ∂
  74.         {BuildingBlocksIntf}
  75.         
  76. "{ObjApp}UAEServerCommand.cp.o" ƒ ∂
  77.         UAEServerCommand.h UAEGestalt.h IncludeFiles.h ∂
  78.         {MacAppIntf} ∂
  79.         {BuildingBlocksIntf}
  80.  
  81. "{ObjApp}UAEClientCommand.cp.o" ƒ ∂
  82.             UAEClientCommand.h UAEGestalt.h IncludeFiles.h ∂
  83.             {MacAppIntf} ∂
  84.             {BuildingBlocksIntf}
  85.  
  86. "{ObjApp}UInformationView.cp.o" ƒ ∂
  87.         UInformationView.h UAEGestalt.h IncludeFiles.h ∂
  88.         {MacAppIntf} ∂
  89.         {BuildingBlocksIntf}
  90.         
  91. "{ObjApp}ULabelView.cp.o" ƒ ∂
  92.         ULabelView.h UAEGestalt.h IncludeFiles.h ∂
  93.         {MacAppIntf} ∂
  94.         {BuildingBlocksIntf}
  95.  
  96. "{ObjApp}ULookupCommand.cp.o" ƒ ∂
  97.         ULookupCommand.h UAEGestalt.h IncludeFiles.h ∂
  98.         {MacAppIntf} ∂
  99.         {BuildingBlocksIntf}
  100.  
  101. "{ObjApp}UGrayfillAdorner.cp.o" ƒ ∂
  102.         UGrayfillAdorner.h UAEGestalt.h IncludeFiles.h ∂
  103.         {MacAppIntf} ∂
  104.         {BuildingBlocksIntf}
  105.